home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / Demos / BCB6 / Playcap / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-01-18  |  1.2 KB  |  33 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef mainH
  4. #define mainH
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include "DSPack.hpp"
  11. #include <Menus.hpp>
  12. //---------------------------------------------------------------------------
  13. class TMainForm : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.         TVideoWindow *VideoWindow;
  17.         TMainMenu *MainMenu;
  18.         TMenuItem *Devices;
  19.         TFilterGraph *FilterGraph;
  20.         TFilter *Filter;
  21.         void __fastcall FormCreate(TObject *Sender);
  22.         void __fastcall DevicesClick(TObject *Sender);
  23.         void __fastcall FormDestroy(TObject *Sender);
  24.         void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  25. private:    // User declarations
  26. public:        // User declarations
  27.         __fastcall TMainForm(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE TMainForm *MainForm;
  31. //---------------------------------------------------------------------------
  32. #endif
  33.